home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / dc.prerm < prev    next >
Text File  |  2007-12-05  |  567b  |  27 lines

  1. #! /bin/sh
  2. #
  3. # This is the prerm script for the Debian GNU/Linux dc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installdocs
  11. if [ "$1" = remove ] || [ "$1" = upgrade ] && \
  12.    which install-docs >/dev/null 2>&1; then
  13.     install-docs -r dc
  14. fi
  15. # End automatically added section
  16.  
  17.  
  18. case "$1" in
  19. remove|upgrade|failed-upgrade|deconfigure)
  20.     install-info --quiet --remove dc
  21.     ;;
  22. *)
  23.     echo "prerm called with unknown argument \`$1'" >&2
  24.     ;;
  25.  
  26. esac
  27.